home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19941221-19950208 / 000159_news@columbia.edu_Thu Jan 12 15:51:07 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  5KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA20921
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 12 Jan 1995 17:03:16 -0500
  3. Received: by apakabar.cc.columbia.edu id AA11379
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 12 Jan 1995 17:03:14 -0500
  5. Newsgroups: comp.protocols.kermit.misc
  6. Path: news.columbia.edu!panix!news.mathworks.com!udel!gatech!howland.reston.ans.net!news.sprintlink.net!malgudi.oar.net!chemabs!usenet
  7. From: Steve Layten <slayten@cas.org>
  8. Subject: ms-kermit and PCTCP
  9. Message-Id: <1995Jan12.155107.21458@chemabs.uucp>
  10. Sender: usenet@chemabs.uucp
  11. Organization: Chemical Abstracts Service
  12. Date: Thu, 12 Jan 1995 15:51:07 GMT
  13. Lines: 87
  14. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. I've just spent a frustrating few days trying to get ms-kermit set up on a
  17. PC using FTP Software's PCTCP under Windows for Workgroups 3.11.  There
  18. were several difficulties, but I now think I have a setup that works
  19. (mostly).
  20.  
  21. I scoured the docs in the latest beta release of ms-kermit in the networks
  22. directory.  I read the bwr file, the help file, etc., but still had
  23. trouble.  Part of the trouble is a "user hostile" environment in my
  24. organization -- We have a site license for FTP Software's PCTCP, and
  25. limited copies of the documentation.  Our network folks are too busy
  26. "solving real problems" to help internal users set up their machines in
  27. any "non-standard" setup.  "Use what we give you -- it works for us." is
  28. implicit, whether we like the setup or not.
  29.  
  30. First, I'd like to thank J. Doupnik for his good work.  I've been using
  31. MS-Kermit for years to access my UNIX system at work from home.  What a
  32. quality product!
  33.  
  34.  
  35. Now, I'd like to correct an error in and expand upon Section 4.1 of the file
  36. "setup.doc" in the networks directory.
  37.  
  38. ---- Begin corrected/updated section 4.1 of file networks/setup.doc ------
  39.  
  40. (4.1) FTP Software Inc. PC/TCP.
  41.  
  42. Use the FTP Telnet interface TNGLASS and run Kermit from it.
  43.  
  44.   tnglass host.domain <optional port> -c 0 -i -e kermit.exe
  45.  
  46.   (The spaces between "-c" and "0" and "-e" and "kermit.exe" are required.)
  47.  
  48. This example uses communication port 1 (-c0) so tell Kermit SET PORT BIOS1,
  49. and the -i option says to keep the TCP connection alive until the terminal
  50. emulator (Kermit) has started using the Int 14h communications pathway.
  51.  
  52. The TNGLASS interface causes the "ENTER" key to send <CR><LF> pairs, as
  53. specified in the Telnet protocol specification.  This may cause some
  54. problems in connecting to UNIX machines.  I found that using "stty igncr"
  55. helped, along with "set key \284 \10" to re-map the "ENTER" key to send a
  56. newline.  (Using "set term newline off" and/or "set tcp newline off"
  57. didn't seem to help.)
  58.  
  59. My configuration: Gateway 2000 P90 machine
  60.           3C5X9 network card? (I'm real fuzzy here.)
  61.           MS-DOS 6.22
  62.           Windows for Workgroups V3.11
  63.           FTP Software's PCTCP software, with \pctcp\3c5x9pd.com
  64.              and \pctcp\vxdinit.exe loaded in autoexec.bat  (I'm
  65.              not sure what version of PCTCP, but TNGLASS reports
  66.              V3.0.)
  67.           My tnglass.pif has "hostname -c 3 -i -e kermit.exe"
  68.              supplied as command-line arguments, and in my
  69.              mscustom.ini, I've specified "Set port BIOS4"
  70.  
  71. Here's output from "stty -a" on a SunOS 4.1.X Sparcstation 2:
  72.  
  73.    speed 38400 baud, 24 rows, 80 columns
  74.    parenb -parodd cs7 -cstopb -hupcl cread -clocal -crtscts 
  75.    -ignbrk brkint ignpar -parmrk -inpck istrip -inlcr igncr -icrnl -iuclc 
  76.    ixon -ixany -ixoff imaxbel 
  77.    isig -iexten icanon -xcase echo echoe echok -echonl -noflsh -tostop 
  78.    echoctl -echoprt echoke 
  79.    opost -olcuc onlcr -ocrnl -onocr -onlret -ofill -ofdel 
  80.    erase  kill   werase rprnt  flush  lnext  susp   intr   quit   stop   eof
  81.    ^H     ^U     ^W     ^R     ^O     ^V     ^Z/^Y  ^?     ^\     ^S/^Q  ^D     
  82.  
  83. I hope this is helpful!
  84.  
  85. Steve Layten (slayten@cas.org)
  86. ---- END    corrected/updated section 4.1 of file networks/setup.doc ------
  87.  
  88. I now seem to have just one more problem.  When using 'vi' on my UNIX
  89. host, at times I get "beeps" in ms-kermit like it has lost characters. I
  90. see it when 'vi' is "wrapping" a fairly large word (set wm=6, type a word
  91. near the right margin, and 'vi' moves the word to the next line).  I also
  92. seem to see it when I use the '^w' key in input mode to erase a word.  The
  93. word is not completely erased, and the cursor is not in the right place.
  94. I'm not sure what to change to prevent ms-kermit from losing the
  95. characters.  Any insights would be appreciated.
  96.  
  97. Thanks again especially to J. Doupnik and Frank da Cruz for their support,
  98. and Thanks in advance to any of you that can help.
  99.  
  100. Steve Layten
  101.  
  102.